home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha Extra 2004 January / CyberMycha Extra 1-2004 (Poland) (Disc 2).bin / Pippi / myoh.dir / 00003_cityButton.ls < prev    next >
Encoding:
Text File  |  2001-09-05  |  312 b   |  24 lines

  1. global sessionObject, monkey
  2.  
  3. on mouseUp me
  4.   sound(2).stop()
  5.   monkey.callFromStage()
  6.   monkey.traceMonkey()
  7.   if sessionObject.city <> 1 then
  8.     sessionObject.saveCity()
  9.   end if
  10.   go(1, "inot")
  11. end
  12.  
  13. on mouseEnter me
  14.   cursor([500, 501])
  15. end
  16.  
  17. on mouseLeave me
  18.   cursor(0)
  19. end
  20.  
  21. on endSprite me
  22.   cursor(0)
  23. end
  24.